Forum Activity for @douglas

douglas
@douglas
01/10/17 12:02:46PM
2,806 posts

PayPal Buy Now Button Not Showing


Installation and Configuration

starone:
I have disabled FoxyCart and just want to use the "Buy It Now" Pay Pal option for my artists downloads. I checked to ensure that the module was active and the quota was set for everyone. I am not seeing a shopping cart button or a field to set the price in the audio section. Any idea what is wrong?

Make sure the profile has entered an email address in their "payments email address" field in the profile modify section.

Hope this helps!
douglas
@douglas
01/09/17 06:54:45AM
2,806 posts

Menu items missing


Using Jamroom

Try switching to a default skin and see if the issue is there, if not we then know is an issue with your custom skin. You might also check the logs to see if there are any errors.

Aside from that, we would need access to the site to check it out.

Hope this helps!
douglas
@douglas
01/07/17 06:03:38AM
2,806 posts

How do i add a login box to my index page.


Design and Skin Customization

Did you follow the docs Michael posted?

https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/603/howto-add-the-user-login-form-to-any-page

It is a fairly simple copy and paste type of doc, not sure why it wouldn't work for you?

If you can give us more detailed steps on what your doing, what your expecting to see and what you actually see, we might be able to guide you in the right direction.

Thanks!
douglas
@douglas
01/04/17 03:44:31PM
2,806 posts

How do I set a default profile header image?


Design and Skin Customization

duke:
its been resolved thanks, i had to copy file from a different skin and upload via FTP.

Glad to hear it.

Can you let us know which skin it is your using so we can make sure the image is there?

Thanks!
douglas
@douglas
01/04/17 02:08:21PM
2,806 posts

How do I set a default profile header image?


Design and Skin Customization

duke:
there is no entry for profile page header image here ACP > Skins > YOURSKIN >

Then the image most likely did not get uploaded.

If you've downloaded the skin and then used a FTP program to upload to your site, make sure you've uploaded the profile header image as well. It should be in the img folder for the skin.

If you installed via the Marketplace, try reloading the skin via ACP > Core > Marketplace > Tools > Reload Skins And Module

Be sure to reset your cache as well, ACP > Core > System Core > Tools > Reset Cache

Hope this helps!
douglas
@douglas
01/04/17 02:03:23PM
2,806 posts

Audio Pro Mobile


Using Jamroom

Dazed:
How can I change the audio item detail page so that when viewed in mobile, the song review thumbnail images are not full size? They look blurry as can be since they were originally thumbs. Not to mention if there are many comments, it is a scrolling nightmare hehe.

Thanks

This is due to the column layout, the image size being set to small and the img_scale class being used.

You can fix this one of two ways....

1. Change the image size to something larger, the layout would look the same on mobile but the image should be much clearer.

modules/jrComment/templates/item_list.tpl around line 18, change this:

{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="small" crop="portrait" alt=$item.user_name class="action_item_user_img iloutline img_scale"}

to this:

{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="large" crop="portrait" alt=$item.user_name class="action_item_user_img iloutline img_scale"}

2. Add this code to the image function, same file same line:

Change this:
{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="small" crop="portrait" alt=$item.user_name class="action_item_user_img iloutline img_scale"}

to this:

{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="small" crop="portrait" alt=$item.user_name class="action_item_user_img iloutline img_scale" style="max-width:70px;max-height:70px;margin:8px;"}

#2 will make the layout more like the desktop layout.

We'll get a fix in for the next release.

Hope this helps!
douglas
@douglas
01/04/17 01:38:28PM
2,806 posts

How do I set a default profile header image?


Design and Skin Customization

duke:
Hi,
Accounts with no profile image are showing a broken image and profile image is scrolled under the header menu, how can I set a default I age that will be forced on profiles with no profile heager photo ?
Thanks .

I believe your referring to the profile page header image for one of the premium skins, you'll want to go to the ACP > Skins > YOURSKIN > Images tab.

If it is not there, make sure you've uploaded it to your site.

Hope this helps!
updated by @douglas: 01/04/17 01:39:17PM
douglas
@douglas
12/31/16 05:51:33AM
2,806 posts

Activity Log Help


Using Jamroom

@dazed can you send use the site URL and admin access.

I can tell you that the gallery_title_url and profile_id are not getting set in whatever function is being used. Can't tell much more without access to the actual page (. . . sos-band/action) and template that is causing the error.

Thanks!
douglas
@douglas
12/30/16 03:11:50PM
2,806 posts

JR Chat Icon


Using Jamroom

Dazed:
Thanks Douglas. I was comparing my file and the default and saw that I did not have the jrchat CSS so that must have been a recent addition.

Yep, latest release should have it.
douglas
@douglas
12/30/16 02:24:17PM
2,806 posts

JR Chat Icon


Using Jamroom

Dazed:
There was a whole add in for chat:


* @title Chat Room Message */
/* @help This is the chat room new message section */
#jrchat-new-message {
    background-color:#000000;
    position: absolute;    right: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    padding: 10px 8px;
    box-sizing: border-box;
    border:1px solid #222222;
}



AudioPro has two areas for chat CSS, there is a chat.css file for the light theme and the dark theme has the chat CSS in the skin_dark.css file.

Hope this helps!
  75